> ASP Contents.Remove 方法

ASP Contents.Remove 方法

Contents.Remove 方法从 Contents 集合中删除一个项目。

语法


Application.Contents.Remove(name|index)

Session.Contents.Remove(name|index)
参数 描述
name 要删除的项目的名称。
index 要删除的项目的索引号。

针对 Application 对象的实例

实例 1


<%
Application("test1")=("First test")
Application("test2")=("Second test")
Application("test3")=("Third test")

Application.Contents.Remove("test2")

for each x in Application.Contents
 Response.Write(x & "=" & Application.Contents(x) & "<br />")
next
%>

输出:


test1=First test
test3=Third test

实例 2


<%
Application("test1")=("First test")
Application("test2")=("Second test")
Application("test3")=("Third test")

Application.Contents.Remove(2)

for each x in Application.Contents
 Response.Write(x & "=" & Application.Contents(x) & "<br />")
next
%>

输出:


test1=First test
test3=Third test

针对 Session 对象的实例:

实例 1


<%
Session("test1")=("First test")
Session("test2")=("Second test")
Session("test3")=("Third test")

Session.Contents.Remove("test2")

for each x in Session.Contents
 Response.Write(x & "=" & Session.Contents(x) & "<br />")
next
%>

输出:


test1=First test
test3=Third test

实例 2


<%
Session("test1")=("First test")
Session("test2")=("Second test")
Session("test3")=("Third test")

Session.Contents.Remove(2)

for each x in Session.Contents
 Response.Write(x & "=" & Session.Contents(x) & "<br />")
next
%>

输出:


test1=First test
test3=Third test
参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号